home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / Inspector / Sources / InspectorCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  1.4 KB  |  62 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        InspectorCommon.h
  3.  
  4.     Contains:    Common CPlusPlus and Rez include file for TInspector.
  5.  
  6.     Copyright:    © 1991-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __INSPECTORCOMMON__
  11. #define __INSPECTORCOMMON__
  12.  
  13. #define kInspectorErrStrings 258        /* error strings */
  14. #define kWindowStackerLibraryMissing 1    /* index into error strings */
  15.  
  16. #define    rMenuBar        128            /* application's menu bar */
  17. #define    rAboutAlert        128            /* about alert */
  18. #define    rDocWindow        128            /* application's window */
  19. #define    rFolderDialog    130            /* dialog for choosing a folder */
  20.  
  21.  
  22. #define    mApple                    128        /* Apple menu */
  23. #define    iAbout                    1
  24.  
  25. #define    mFile                    129        /* File menu */
  26. #define    iClose                    1
  27. #define    iQuit                    2
  28.  
  29. #define    mEdit                    130        /* Edit menu */
  30. #define    iUndo                    1
  31. #define    iCut                    3
  32. #define    iCopy                    4
  33. #define    iPaste                    5
  34. #define    iClear                    6
  35.  
  36. #define    mWindows                131        /* Windows menu */
  37. #define    iStack                    1
  38. #define    iRefresh                2
  39. #define    iRefreshAll                3
  40. #define    iHome                    4
  41.  
  42. #define    mCommands                132        /* Commands menu */
  43. #define    iRegisterFolder            1
  44. #define    iUnregisterFolder        2
  45. #define    iRegisterFile            4
  46. #define    iUnregisterFile            5
  47. #define    iReloadLibraryManager    7
  48. #define    iUnloadLibraryManager    8
  49. #define    iGotoSimpleProgram        10
  50. #define    iTraceLogOn                12
  51. #define    iTraceLogOff            13
  52.  
  53. #define    mTests                    133        /* Tests menu */
  54. #define    iVerbose                1
  55. #define    iDebug                    2
  56. #define    iDoLoad                    3
  57. #define    iGrowPool                4
  58. #define    iRunAllTests            6
  59.  
  60.  
  61. #endif
  62.